home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / cafead1a / wav.bas < prev    next >
BASIC Source File  |  1999-10-05  |  328b  |  11 lines

  1. Attribute VB_Name = "Wav"
  2.  
  3. Public Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
  4.  
  5. Public Const SND_SYNC = &H0
  6. Public Const SND_ASYNC = &H1
  7. Public Const SND_NODEFAULT = &H2
  8. Public Const SND_LOOP = &H8
  9. Public Const SND_NOSTOP = &H10
  10.  
  11.